home *** CD-ROM | disk | FTP | other *** search
/ SVM Mac 133 / CD-ROM N°133 - Le CD-ROM des CD-ROM.iso / PARTCOM / SVMFOR / PRO.DIR / 00003.ls < prev    next >
Encoding:
Text File  |  1995-11-09  |  344 b   |  20 lines

  1. on mouseDown
  2.   puppetSprite(2, 1)
  3.   repeat while the stillDown
  4.     if rollOver(2) then
  5.       set the castNum of sprite 2 to 4
  6.       updateStage()
  7.       next repeat
  8.     end if
  9.     set the castNum of sprite 2 to 3
  10.     updateStage()
  11.   end repeat
  12.   puppetSprite(2, 0)
  13. end
  14.  
  15. on mouseUp
  16.   if rollOver(2) then
  17.     go("choix", "ECOLE.DIR")
  18.   end if
  19. end
  20.